home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / cecil_target.e < prev    next >
Text File  |  2000-03-25  |  3KB  |  166 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class CECIL_TARGET
  17.    --
  18.    -- Pseudo expression to handle CECIL target.
  19.    --
  20.  
  21. inherit EXPRESSION;
  22.  
  23. creation make
  24.  
  25. feature
  26.  
  27.    is_current: BOOLEAN is true;
  28.  
  29.    is_writable: BOOLEAN is false;
  30.  
  31.    is_static: BOOLEAN is false;
  32.  
  33.    is_pre_computable: BOOLEAN is false;
  34.  
  35.    is_manifest_string: BOOLEAN is false;
  36.  
  37.    is_manifest_array: BOOLEAN is false;
  38.  
  39.    is_result: BOOLEAN is false;
  40.  
  41.    is_void: BOOLEAN is false;
  42.  
  43.    can_be_dropped: BOOLEAN is true;
  44.  
  45.    use_current: BOOLEAN is true;
  46.  
  47.    isa_dca_inline_argument: INTEGER is 0;
  48.  
  49.    c_simple: BOOLEAN is true;
  50.  
  51.    static_result_base_class: BASE_CLASS is
  52.       do
  53.          Result := result_type.base_class;
  54.       end;
  55.  
  56.    result_type: TYPE is
  57.       do
  58.          Result := run_feature.current_type;
  59.       end;
  60.  
  61.    static_value: INTEGER is
  62.       do
  63.       end;
  64.  
  65.    start_position: POSITION is
  66.       do
  67.       end;
  68.  
  69.    assertion_check(tag: CHARACTER) is
  70.       do
  71.       end;
  72.  
  73.    afd_check is
  74.       do
  75.       end;
  76.  
  77.    to_runnable(ct: TYPE): like Current is
  78.       do
  79.          Result := Current;
  80.       end;
  81.  
  82.    stupid_switch(r: ARRAY[RUN_CLASS]): BOOLEAN is
  83.       do
  84.       end;
  85.  
  86.    dca_inline_argument(formal_arg_type: TYPE) is
  87.       do
  88.       end;
  89.  
  90.    mapping_c_target(target_type: TYPE) is
  91.       do
  92.          run_feature.current_type.mapping_cast;
  93.          cpp.put_character('C');
  94.       end;
  95.  
  96.    mapping_c_arg(formal_arg_type: TYPE) is
  97.       do
  98.          mapping_c_target(result_type);
  99.       end;
  100.  
  101.    c_declare_for_old is
  102.       do
  103.       end;
  104.  
  105.    compile_to_c_old is
  106.       do
  107.       end;
  108.  
  109.    compile_to_jvm_old is
  110.       do
  111.       end;
  112.  
  113.    collect_c_tmp is
  114.       do
  115.       end;
  116.  
  117.    compile_to_c is
  118.       do
  119.          if result_type.is_user_expanded then
  120.             cpp.put_character('*');
  121.          end;
  122.          cpp.print_current;
  123.       end;
  124.  
  125.    compile_to_jvm is
  126.       do
  127.          result_type.jvm_push_local(0);
  128.       end;
  129.  
  130.    compile_target_to_jvm is
  131.       do
  132.          compile_to_jvm;
  133.       end;
  134.  
  135.    jvm_branch_if_false: INTEGER is
  136.       do
  137.          compile_to_jvm;
  138.          Result := code_attribute.opcode_ifeq;
  139.       end;
  140.  
  141.    jvm_branch_if_true: INTEGER is
  142.       do
  143.          compile_to_jvm;
  144.          Result := code_attribute.opcode_ifne;
  145.       end;
  146.  
  147.    compile_to_jvm_into(dest: TYPE): INTEGER is
  148.       do
  149.       end;
  150.  
  151. feature {NONE}
  152.  
  153.    run_feature: RUN_FEATURE;
  154.  
  155.    make(rf: RUN_FEATURE) is
  156.       require
  157.          rf /= Void
  158.       do
  159.          run_feature := rf;
  160.       ensure
  161.          run_feature = rf
  162.       end;
  163.  
  164. end -- CECIL_TARGET
  165.  
  166.